* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
}

.navbar {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-family:'Popins',sans-serif;
  font-size: 58px;
  font-weight: 600;
  color: rgb(46,50,255); 
  text-transform: lowercase;
}

.nav-links a {
  font-family: Arial, sans-serif;  
  margin-left: 40px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0072ff;
}

.Div-1{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 30px;
    max-width: 1000px;
    font-size: 25px;
    line-height: 2.0;
}

.Div-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: rgb(220, 222, 225);
    width: 100%;
}

.Div-2 h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.text {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    font-size: 25px;
    line-height: 2.0;
}

.imag {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.images {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size:20px;
    margin: 20px;
}

.img {
    margin-bottom: 20px;
    max-width: 100%;
    font-size: 20px;
    height: auto;
}

.office-item h3 {
    font-size: 30px;
    margin-top: 20px;
    font-weight: bold;
}

.Div-3{
    display:flex;
    flex-direction: column;
    text-align:center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    font-size: 25px;
    line-height: 2.0;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
  padding: 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

.card {
  background-color: #f2efef;
  border-radius: 10px;
  height: 450px;
  width: 400px;
  justify-self: center;
  margin: 0 auto;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #007bff; 
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-terms a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer-terms a:hover {
  color: #fff;
}

@media screen and (max-width:767px){
   .Div-3{
    flex-direction:column;
    text-align:center;
   }
}